home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / libsrc / m / src / acosh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-10  |  85 b   |  7 lines

  1. #include <math.h>
  2.  
  3. double acosh(double x)
  4. {
  5.   return log(x + sqrt(x*x - 1));
  6. }
  7.